home *** CD-ROM | disk | FTP | other *** search
/ Safarir 3 / SafTV-CD3.iso / pc / Bonus / Dessins Animés / static / 01 / bin1.swf / scripts / frame_1 / DoAction.as
Text File  |  2001-10-19  |  413b  |  13 lines

  1. if(_root._framesloaded >= _root._totalframes)
  2. {
  3.    gotoAndPlay(3);
  4. }
  5. else
  6. {
  7.    downloaded = math.floor(_root.getbytesLoaded() / _root.getbytestotal() * 100) add "%";
  8.    download_bar.gotoandstop(downloaded);
  9.    bytesloaded = math.floor(_root.getbytesloaded() / 1000);
  10.    bytestotal = math.floor(_root.getbytestotal() / 1000);
  11.    message = bytesloaded add "Kb of " add bytestotal add "Kb downloaded";
  12. }
  13.